home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / usr_-_Usr_Files / INCLUDE / AR.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  292b  |  21 lines

  1. /* Typed in by Richard */
  2. /* minor changes for linux */
  3. #ifndef _AR_H
  4. #define _AR_H
  5.  
  6. #define ARMAG "!<arch>\n"
  7. #define SARMAG 8
  8. #define ARFMAG "`\n"
  9.  
  10. struct ar_hdr {
  11.     char    ar_name[16],
  12.         ar_date[12],
  13.         ar_uid[6],
  14.         ar_gid[6],
  15.         ar_mode[8],
  16.         ar_size[10],
  17.         ar_fmag[2];
  18. };
  19.  
  20. #endif /* _AR_H */
  21.